home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / pad321.zip / FILENAME.CFG < prev    next >
Text File  |  1996-09-20  |  5KB  |  116 lines

  1. // ---------------------------------------------------------------------------
  2. //                              F I L E N A M E S
  3. // ---------------------------------------------------------------------------
  4. //
  5. // This section defines the names of all files used by Padlock. Note that all
  6. // backslashes MUST be escaped. That is, wherever you'd normally use one
  7. // backslash, you must use two. For example, to enter the path:
  8. //
  9. // c:\max\padlock
  10. //
  11. // You'd need to enter the string:
  12. //
  13. // c:\\max\\padlock
  14. //
  15. // All path names are given with respect to the main maximus directory. If
  16. // no path is specified, then the file will be searched for in the main max
  17. // directory.
  18. //
  19.  
  20.         // phoneTempFile specifies the filename of the temporary file 
  21.         // generated by getphone.
  22.  
  23. #define phoneTempFile     ("getphone." + strpadleft (itostr (id.task_num), 3, '0'))
  24.  
  25.         // checkNumTempFile specifies the filename of the temporary file
  26.         // generated by checknum.
  27.  
  28. #define checkNumTempFile  ("checknum." + strpadleft (itostr (id.task_num), 3, '0'))
  29.  
  30.         // phone_file specifies the name of the file where Padlock will
  31.         // find information about your local calling area. By default,
  32.         // this file is located in the same directory as the rest of the
  33.         // padlock files.
  34.  
  35. #define phone_file                      "padlock\\phone.ctl"
  36.  
  37.         // log_file defines the name of a file where Padlock will write one
  38.         // line for every verification attempt, describing its result.
  39.         // This file is optional. If empty quotes are specified, no log
  40.         // file will be written.
  41.  
  42. #define log_file  ("padlock\\logfile." + strpadleft (itostr (id.task_num), 3, '0'))
  43. //#define log_file      ""
  44.  
  45.         // .BBS files --------------------------------------------------------
  46.         //
  47.         // The following keywords specify the name of .BBS files (without
  48.         // the .BBS extension) that padlock displays at different times.
  49.         // Many of these files are optional. If an optional filename is
  50.         // left blank, a standard message will be displayed to the user
  51.         // instead of the .BBS file.
  52.  
  53.         // message_file_directory specifies the directory where all the Padlock
  54.         // *.MEC and *.BBS files can be found. By default, all of these files
  55.         // are kept in a directory within your main Maximus directory called
  56.         // "padlock". If you wish to move these files, change this directory
  57.         // name.
  58.  
  59. #define message_file_directory          "padlock"
  60.  
  61.         // long_distance_file is displayed to users calling from long distance
  62.         // numbers at which verifications are not allowed.
  63.  
  64. #define long_distance_file              "ld"
  65.  
  66.         // dupe_found_file is displayed when a user enters a phone number that
  67.         // is already being used by another user.
  68.  
  69. #define dupe_found_file                 "dupe"
  70.  
  71.         // lockout_file is displayed if a user enters a number which has been
  72.         // locked out.
  73.  
  74. #define lockout_file                    "lockout"
  75.  
  76.         // local_file is displayed to all users whose phone numbers are
  77.         // detected as local calls.
  78.  
  79. #define local_file                      "local"
  80.  
  81.         // ld_ok_file is displayed to all users who have entered a long
  82.         // distance number which is considered valid for verification.
  83.  
  84. #define ld_ok_file                      "ldok"
  85.  
  86.         // One (and only one) of the following three files will be
  87.         // displayed to the user at the end of each verification attempt.
  88.         //
  89.         // success_file         displayed to the user after a sucessful
  90.         //                      verification.
  91.         //
  92.         // fail_file            displayed to the user if the verification
  93.         //                      was unsuccessful for watever reason.
  94.         //
  95.         // abort_file           displayed if the user aborted the 
  96.         //                      verification.
  97.         //
  98.  
  99. #define success_file                    "success"
  100. #define fail_file                       "fail"
  101. #define abort_file                      "abort"
  102.  
  103. //#define welcome_back_file               "back"
  104. #define welcome_back_file               ""
  105. #define bad_code_file                   "badcode"
  106. #define bad_password_file               "badpwd"
  107. #define hangup_ld_file                  "byesucc"
  108. #define success_hangup_file             "byesucc"
  109. #define help_file                       "cbvhelp"
  110. #define bad_baudrate_file               "badbaud"
  111. #define bad_baudrate_attempt_file       "badbaud2"
  112.  
  113. //#define bad_time_file                 "badtime"
  114. #define bad_time_file                   ""
  115.  
  116.